home *** CD-ROM | disk | FTP | other *** search
/ Enter 2003 July / EnterCD 7_2003.iso / Ekstra / GL Force 2001 3.0 / Banner.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  2002-03-06  |  985 b   |  44 lines

  1. // Banner.cpp : implementation file
  2. //
  3.  
  4. #include "stdafx.h"
  5. #include "3dfont.h"
  6. #include "Banner.h"
  7.  
  8. #ifdef _DEBUG
  9. #define new DEBUG_NEW
  10. #undef THIS_FILE
  11. static char THIS_FILE[] = __FILE__;
  12. #endif
  13.  
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CBanner dialog
  16.  
  17.  
  18. CBanner::CBanner(CWnd* pParent /*=NULL*/)
  19.     : CDialog(CBanner::IDD, pParent)
  20. {
  21.     //{{AFX_DATA_INIT(CBanner)
  22.         // NOTE: the ClassWizard will add member initialization here
  23.     //}}AFX_DATA_INIT
  24. }
  25.  
  26.  
  27. void CBanner::DoDataExchange(CDataExchange* pDX)
  28. {
  29.     CDialog::DoDataExchange(pDX);
  30.     //{{AFX_DATA_MAP(CBanner)
  31.         // NOTE: the ClassWizard will add DDX and DDV calls here
  32.     //}}AFX_DATA_MAP
  33. }
  34.  
  35.  
  36. BEGIN_MESSAGE_MAP(CBanner, CDialog)
  37.     //{{AFX_MSG_MAP(CBanner)
  38.         // NOTE: the ClassWizard will add message map macros here
  39.     //}}AFX_MSG_MAP
  40. END_MESSAGE_MAP()
  41.  
  42. /////////////////////////////////////////////////////////////////////////////
  43. // CBanner message handlers
  44.